gettext can't handle it, and there is no real need to use G_GSIZE_FORMAT
here anyway.
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_BAD_OPTION,
- _("Color profile has invalid length '%" G_GSIZE_FORMAT "'."),
- icc_profile_size);
+ _("Color profile has invalid length %d."),
+ (gint)icc_profile_size);
success = FALSE;
goto cleanup;
}
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_BAD_OPTION,
- _("Color profile has invalid length '%d'."),
- icc_profile_size);
+ _("Color profile has invalid length %d."),
+ (gint)icc_profile_size);
retval = FALSE;
goto cleanup;
}